func runtime.cheaprand64

5 uses

	runtime (current package)
		mprof.go#L520: 	if rate <= 0 || (rate > cycles && cheaprand64()%rate > cycles) {
		mprof.go#L752: 		prevScore := uint64(cheaprand64()) % uint64(prev)
		mprof.go#L753: 		thisScore := uint64(cheaprand64()) % uint64(cycles)
		mprof.go#L907: 	if rate > 0 && cheaprand64()%rate == 0 {
		rand.go#L271: func cheaprand64() int64 {